home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Pascal / Libraries / WASTE 1.1a4 / WASTE Headers / Pascal Interfaces / LongCoords.p next >
Encoding:
Text File  |  1994-10-15  |  551 b   |  36 lines  |  [TEXT/PJMM]

  1. unit LongCoords;
  2.  
  3. { Pascal interface to the WASTE text engine: }
  4. { Long Coordinates }
  5.  
  6. { Copyright © 1993-1994 Marco Piovanelli }
  7. { All Rights Reserved }
  8.  
  9. interface
  10.  
  11.     type
  12.  
  13. { long coordinates types }
  14.  
  15.         LongPt = record
  16.                 case Integer of
  17.                     0: (
  18.                             vh: array[VHSelect] of LongInt;
  19.                     );
  20.                     1: (
  21.                             v, h: LongInt;
  22.                     );
  23.             end;  { LongPt }
  24.  
  25.         LongRect = record
  26.                 case Integer of
  27.                     0: (
  28.                             topLeft, botRight: LongPt;
  29.                     );
  30.                     1: (
  31.                             top, left, bottom, right: LongInt;
  32.                     );
  33.             end;  { LongRect }
  34.  
  35. implementation
  36. end.